non - arithmetic shift - vertaling naar arabisch
Diclib.com
Woordenboek ChatGPT
Voer een woord of zin in in een taal naar keuze 👆
Taal:

Vertaling en analyse van woorden door kunstmatige intelligentie ChatGPT

Op deze pagina kunt u een gedetailleerde analyse krijgen van een woord of zin, geproduceerd met behulp van de beste kunstmatige intelligentietechnologie tot nu toe:

  • hoe het woord wordt gebruikt
  • gebruiksfrequentie
  • het wordt vaker gebruikt in mondelinge of schriftelijke toespraken
  • opties voor woordvertaling
  • Gebruiksvoorbeelden (meerdere zinnen met vertaling)
  • etymologie

non - arithmetic shift - vertaling naar arabisch

SHIFT OPERATOR IN COMPUTER PROGRAMMING
Arithmetic left shift; Arithmetic right shift

non - arithmetic shift      
إزاحة غير حسابية ( منطقية ) .
shift key         
  • Keyboard symbol for “Level 2 Select” (i.e. “Shift”)
MODIFIER KEY ON MANY COMPUTER KEYBOARDS, USED TO WRITE CAPITAL LETTERS OR COMMON SYMBOLS
⇧; SHIFT key; Left Shift key; LShift key; LShift; LSHIFT; Right Shift key; RShift key; RShift; RSHIFT; Shift code; Shift Key
مفتاح إزاحة .
shift out         
  • Shift In and Shift Out used in a Linux terminal to access a variant [[DEC Special Graphics]] set
ASCII CONTROL CHARACTERS
Shift out; Shift in; Shift Out; Shift In; Control-N; Ctrl-N; Control-O; Ctrl-O; ␎; ␏; ^N; ^O; Shift-out; Shift-in; ASCII 14; ASCII 15; \xE; \xF; \x0E; \x0F; U+000E; U+000F
الإزاحة للخارج .

Definitie

shift key
n. (on a typewriter) to press a shift key

Wikipedia

Arithmetic shift

In computer programming, an arithmetic shift is a shift operator, sometimes termed a signed shift (though it is not restricted to signed operands). The two basic types are the arithmetic left shift and the arithmetic right shift. For binary numbers it is a bitwise operation that shifts all of the bits of its operand; every bit in the operand is simply moved a given number of bit positions, and the vacant bit-positions are filled in. Instead of being filled with all 0s, as in logical shift, when shifting to the right, the leftmost bit (usually the sign bit in signed integer representations) is replicated to fill in all the vacant positions (this is a kind of sign extension).

Some authors prefer the terms sticky right-shift and zero-fill right-shift for arithmetic and logical shifts respectively.

Arithmetic shifts can be useful as efficient ways to perform multiplication or division of signed integers by powers of two. Shifting left by n bits on a signed or unsigned binary number has the effect of multiplying it by 2n. Shifting right by n bits on a two's complement signed binary number has the effect of dividing it by 2n, but it always rounds down (towards negative infinity). This is different from the way rounding is usually done in signed integer division (which rounds towards 0). This discrepancy has led to bugs in a number of compilers.

For example, in the x86 instruction set, the SAR instruction (arithmetic right shift) divides a signed number by a power of two, rounding towards negative infinity. However, the IDIV instruction (signed divide) divides a signed number, rounding towards zero. So a SAR instruction cannot be substituted for an IDIV by power of two instruction nor vice versa.